home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Media 3
/
PC MEDIA CD03.iso
/
share
/
prog
/
tch_tpas
/
prog15a.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1986-04-05
|
384 b
|
16 lines
PROGRAM PROG15A;
{$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved.
New Topics: Cursor location
VAR
X, Y : Integer;
BEGIN
ClrScr;
Write('Enter X and Y: ');
ReadLn(X, Y);
GotoXY(X, Y);
WriteLn(X,' ',Y);
END.